home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Internet / FeedDemon / FeedDemonInstall.exe / {app} / Data / Styles / headerimg.inc < prev    next >
Encoding:
Text File  |  2009-02-27  |  658 b   |  16 lines

  1. <!-- image to display next to newspaper title -->
  2. <xsl:choose>
  3.     <xsl:when test="$newspaper-type='search'"><img id="headerimg" src="$IMAGEDIR$Search-lg.gif" align="absmiddle" /></xsl:when>
  4.     <!-- if unread items exist, enable marking newspaper as read -->
  5.     <xsl:when test="$unread-count != 0">
  6.         <a href="fdaction:?action=markallpagesread" title="$LANG_CONST(S_NewsLblMarkAllPagesRead)$">
  7.             <img id="headerimg" src="$IMAGEDIR$newspaper-unread-lg.png" align="absmiddle" />
  8.         </a>
  9.     </xsl:when>
  10.     <!-- no unread items -->
  11.     <xsl:otherwise>
  12.         <img id="headerimg" src="$IMAGEDIR$newspaper-lg.png" align="absmiddle" />
  13.     </xsl:otherwise>
  14. </xsl:choose>
  15.  
  16.